(math-small-factorial-table): Replace list by vector.
authorJay Belanger <jay.p.belanger@gmail.com>
Wed, 4 Jul 2007 04:35:08 +0000 (04:35 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Wed, 4 Jul 2007 04:35:08 +0000 (04:35 +0000)
lisp/calc/calc-comb.el

index 515995a2e746293dbdbe61307108abb69f3b0dce..7bda99724267d99bff6f07c229cb8f8a410650f5 100644 (file)
 
 (defconst math-small-factorial-table
   (eval-when-compile
-    (list
-     'vector 1 1 2 6 24 120 720 5040 40320 362880 
-     (math-read-number-simple "3628800")
-     (math-read-number-simple "39916800")
-     (math-read-number-simple "479001600")
-     (math-read-number-simple "6227020800")
-     (math-read-number-simple "87178291200")
-     (math-read-number-simple "1307674368000")
-     (math-read-number-simple "20922789888000")
-     (math-read-number-simple "355687428096000")
-     (math-read-number-simple "6402373705728000")
-     (math-read-number-simple "121645100408832000")
-     (math-read-number-simple "2432902008176640000"))))
+    (vector 1 1 2 6 24 120 720 5040 40320 362880 
+            (math-read-number-simple "3628800")
+            (math-read-number-simple "39916800")
+            (math-read-number-simple "479001600")
+            (math-read-number-simple "6227020800")
+            (math-read-number-simple "87178291200")
+            (math-read-number-simple "1307674368000")
+            (math-read-number-simple "20922789888000")
+            (math-read-number-simple "355687428096000")
+            (math-read-number-simple "6402373705728000")
+            (math-read-number-simple "121645100408832000")
+            (math-read-number-simple "2432902008176640000"))))
 
 (defun calcFunc-fact (n)   ; [I I] [F F] [Public]
   (let (temp)